home *** CD-ROM | disk | FTP | other *** search
/ Family Forum 262 / SOMC Family Forum 262.iso / somc.dir / 00054_help button.ls < prev    next >
Encoding:
Text File  |  1999-03-23  |  336 b   |  24 lines

  1. on mouseEnter
  2.   if not count(the windowList) then
  3.     doRollover(29, 2)
  4.   end if
  5. end
  6.  
  7. on mouseLeave
  8.   if not count(the windowList) then
  9.     doRollout(29)
  10.   end if
  11. end
  12.  
  13. on mouseUp
  14.   global HELPMANUAL
  15.   glowClear()
  16.   doClick()
  17.   cursor(0)
  18.   if HELPMANUAL starts "@" then
  19.     open(HELPMANUAL)
  20.   else
  21.     play frame HELPMANUAL
  22.   end if
  23. end
  24.